Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636152 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/118 - Ball Game

game/ cody/swapnilsparsh/30DaysOfJavaScript/118 - Ball Game/game/
7 Items
  • bg.jpeg
  • bg.png
  • pic.jpg
  • stump.jpg
  • pic2.png
  • picpg.jpg
  • pic.png
  • js.js cody/swapnilsparsh/30DaysOfJavaScript/118 - Ball Game/js.js
    177 Views
    0 Comments

    var block = document.getElementById("block");
    var hole = document.getElementById("hole");
    var charac = document.getElementById("charac");
    var jumping = 0;
    var counter = 0;

    hole.addEventListener('animationiteration', () =>
    index.html cody/swapnilsparsh/30DaysOfJavaScript/118 - Ball Game/index.html
    305 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en" onclick="jump()">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Don't Let The Ball Down</title>
    <link rel="stylesheet" href="css.css">
    css.css cody/swapnilsparsh/30DaysOfJavaScript/118 - Ball Game/css.css
    102 Views
    0 Comments
    *{
    padding: 0;
    margin: 0;

    }
    #game{
    width: 400px;
    height: 500px;